home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-Blue - MS DOS Public Domain Library
/
PC-Blue MS-DOS Public Domain Library - NYACC.iso
/
vol260
/
filecopy.arc
/
COPIER.PAS
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1985-12-16
|
384 b
|
16 lines
Program Copier;
Type FileNameType = String[65];
{$I FileCopy.INC}
VAR InFile, OutFile : FileNameType;
Begin
Write('Input File Name: ');
Readln(InFile);
Write('Outout File Name: ');
Readln(OutFile);
CopyFile(InFile, OutFile);
End.